/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}



/* Optional animation */
@keyframes slideUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}




/* Packages Section */
.packages {
    padding: 4rem 2rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.package-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* About and Contact Sections */
.about, .contact {
    padding: 4rem 2rem;
    text-align: center;
}




/* Quick Booking */
.quick-booking {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.quick-booking a {
    display: block;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition: transform 0.3s;
}

.quick-booking a:hover {
    transform: scale(1.1);
}

.whatsapp-btn img, .call-btn img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

/* Fade/* Package Card Images */
.package-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    transition: transform 0.3s;
}

.package-card:hover img {
    transform: scale(1.05);
}/* Header Updates for Mobile */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background:linear-gradient(90deg, #002B5C, #004A92);
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    transition: background 0.3s;
}

header:hover {
    background:linear-gradient(90deg, #002B5C, #004A92);
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
}

/* Hamburger Button */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    color:  #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

nav ul li a:hover, nav ul li a.active {
    color:#FFD35A;
}

/* Mobile Styles (Screens < 768px) */
@media (max-width: 767px) {
    header {
        padding: 1rem;
        flex-wrap: wrap; /* Allow wrapping on small screens */
    }

    .logo {
        font-size: 1.2rem; /* Slightly smaller logo */
        flex: 1; /* Take available space */
    }

    .hamburger {
        display: flex; /* Show hamburger on mobile */
        order: 2; /* Position after logo */
    }

    nav {
        width: 100%;
        order: 3; /* Below logo and hamburger */
        display: none; /* Hidden by default */
        background:  #002b5c;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        animation: slideDown 0.3s ease-out;
    }

    nav.active {
        display: block; /* Show when toggled */
    }

    nav ul {
        flex-direction: column; /* Stack items vertically */
        padding: 1rem 0;
    }

    nav ul li {
        margin: 0.5rem 0;
        text-align: center;
    }

    nav ul li a {
        display: block;
        padding: 0.5rem;
    }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background images */
.hero-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
}

/* Dark overlay */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease-out;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
}

.highlight {
  color: red;
}

/* ✅ Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-slideshow {
    height: 70vh;
  }

  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .nav-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }
}

/* Text animation */
@keyframes fadeUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/*slide show*/

.hero-slideshow {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* Background images */
.hero-slideshow img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills full window on desktop */
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-slideshow img.active {
  opacity: 1;
  filter: brightness(1.08) contrast(1.1);
}


/* Overlay */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2); /* lighter overlay */
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeUp 1.2s ease-out;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
}

.highlight {
  color: red;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev { left: 20px; }
.next { right: 20px; }

/* 🔘 Dots container */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

/* Individual dots */
.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: red;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-slideshow { height: 80vh; }

  .hero-content h1 { font-size: 1.8rem; }
  .hero-content p { font-size: 1rem; }

  .nav-btn {
    font-size: 1.5rem;
    padding: 8px 12px;
  }

  .dot {
    height: 10px;
    width: 10px;
  }
}

/* Text animation */
@keyframes fadeUp {
  from { transform: translateY(50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.hero-slideshow {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

/* 🖼️ Images adjust dynamically */
.hero-slideshow img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: contain; /* keeps entire image visible */
  object-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: rgb(39, 35, 35); /* fills gaps if any */
  
}

.hero-slideshow img.active {
   
  opacity: 1;
  /* 🌟 Enhanced clarity and brightness */
  filter: brightness(1.5) contrast(1.1) saturate(1.2) sharpness(0.8);
  transition: opacity 1.5s ease-in-out, filter 0.6s ease-in-out;

  filter: brightness(1.1) contrast(1.3) saturate(1.1) sepia(0.05);

}



/* Smooth overlay for text readability */
.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

/* Text content */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 20px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.2rem;
}

.highlight {
  color: red;
}

/* Navigation buttons */
.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 50%;
  transition: background 0.3s;
}

.nav-btn:hover {
  background: rgba(255, 255, 255, 0.5);
}

.prev { left: 20px; }
.next { right: 20px; }

/* Dots navigation */
.dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 3;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: red;
}

/* 📱 Mobile adjustments */
@media (max-width: 768px) {
  .hero-slideshow {
    height: auto; /* dynamic height adjusts to image */
    min-height: 70vh; /* ensures decent section size */
  }

  .hero-slideshow img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .nav-btn {
    font-size: 1.4rem;
    padding: 6px 10px;
  }

  .dot {
    height: 10px;
    width: 10px;
  }
}


/* Hero Section */
.hero {
  background: url('images/slide2.jpg') no-repeat center center/cover;
  height: 100vh;
  position: relative;
}

.hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #fff;
  animation: fadeIn 2s ease;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

/* About Section */
.about {
  padding: 60px 10%;
  background: var(--bg-light);
  
}

.about h2 {
  text-align: center;
  color: var(--primary);
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about p {
  text-align: center;
  margin-bottom: 40px;
}

.about-details {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.card {
  background: var(--bg-gray);
  border-radius: 15px;
  padding: 30px;
  width: 300px;
  text-align: center;
  transition: transform 0.4s, box-shadow 0.4s;
  background-color:#e3f2fd;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow:#64b5f6;
  
}

.card i {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 10px;
}

/* Mission Section */
.mission {
  background: var(--bg-gray);
  padding: 60px 10%;
  text-align: center;
  background-color: #dceffd;
}

.mission-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.mission-item {
  width: 300px;
}

.mission-item i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

/* Why Choose Us */
.why-choose {
  padding: 60px 10%;
  text-align: center;
  
}

.why-choose ul {
  list-style: none;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
}

.why-choose li {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.why-choose i {
  color: var(--accent);
  margin-right: 10px;
}

/* Gallery Section */
.gallery {
  background: var(--bg-gray);
  padding: 60px 10%;
  text-align: center;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}



/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .about-details, .mission-content {
    flex-direction: column;
    align-items: center;
  }

  .card, .mission-item {
    width: 90%;
  }
}


/* ---------- GLOBAL RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ---------- SECTION 2: ABOUT ---------- */
.about-section {
  padding: 80px 10%;
  background: linear-gradient(90deg, #f9f9f9 50%, #fff 50%);
}

.about-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  object-fit: cover;
}

.about-content {
  flex: 1;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #002b5c;
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-content h2 span {
  color: #e2b007;
}

.about-content p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 20px;
}

.about-points {
  list-style: none;
  margin-bottom: 25px;
}

.about-points li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.about-points i {
  color: #e2b007;
  margin-right: 8px;
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  background: #002b5c;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s;
}

.btn:hover {
  background: #e2b007;
  color: #002b5c;
  transform: translateY(-3px);
}

/* ---------- SECTION 3: SERVICES ---------- */
.services-section {
  padding: 90px 10%;
  background: #f4f8fb;
}

.services-section header {
  text-align: center;
  margin-bottom: 50px;
}

.services-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #002b5c;
  margin-bottom: 10px;
}

.section-intro {
  color: #444;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.service-card {
  background: #fff;
  border-radius: 15px;
  padding: 30px 25px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.service-card i {
  font-size: 2.2rem;
  color: #e2b007;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #002b5c;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 18px rgba(0,0,0,0.1);
}

/* ---------- RESPONSIVE DESIGN ---------- */

/* Tablets */
@media (max-width: 992px) {
  .about-section {
    padding: 70px 6%;
    background: #fff;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 400px;
  }

  .about-content {
    padding-top: 20px;
  }

  .services-section {
    padding: 70px 6%;
  }
}

/* Mobile Devices */
@media (max-width: 600px) {
  .about-section {
    padding: 60px 5%;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .services-section h2 {
    font-size: 1.6rem;
  }

  .section-intro {
    font-size: 0.95rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card i {
    font-size: 2rem;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}


/*vans section*/
.vans-section {
  padding: 80px 10%;
  background: #f4f8fb;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: #002b5c;
  margin-bottom: 10px;
}

.section-header h2 span {
  color: #e2b007;
}

.section-intro {
  color: #444;
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.vans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.van-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  cursor: pointer;
}

.van-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
  object-fit: cover;
}

.van-card h3 {
  font-size: 1.25rem;
  color: #002b5c;
  margin-bottom: 5px;
}

.van-card p {
  font-size: 0.95rem;
  color: #444;
}

.van-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 20px rgba(0,0,0,0.12);
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  top:0; left:0;
  width:100%; height:100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

.lightbox-content {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.lightbox-img {
 width: 100%;
  max-width: 850px;     /* Bigger and clearer for desktop */
  max-height: 85vh;     /* Fit inside any screen neatly */
  object-fit: contain;  /* Prevent cropping, keep full van visible */
  border-radius: 15px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, opacity 0.3s ease;}

  .lightbox.show .lightbox-img {
  transform: scale(1.02);
  opacity: 1;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 40px;
  cursor: pointer;
}

.lightbox-content button {
  background: none;
  border: none;
  color: #fff;
  font-size: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-content button:hover {
  color: #e2b007;
}

.van-details {
  color: #fff;
  max-width: 300px;
  text-align: left;
  margin-top: 10px;
}

.van-details h3 {
  color: #e2b007;
  margin-bottom: 8px;
}

.van-details p {
  margin: 4px 0;
}

/* Tablet view */
@media screen and (max-width: 992px) {
  .lightbox-img {
    max-width: 95%;
    max-height: 70vh;
  }
}

/* Mobile view */
@media screen and (max-width: 768px) {
  .lightbox-img {
    max-width: 100%;
    max-height: 60vh;
  }
}




.contact-section {
  padding: 80px 10%;
  background: #f4f8fb;
  display: flex;
  justify-content: center;
}

.contact-container {
  background: #fff;
  border-radius: 15px;
  padding: 40px;
  max-width: 800px;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.contact-container h2 {
  text-align: center;
  font-size: 2rem;
  color: #002b5c;
  margin-bottom: 10px;
}

.contact-container h2 span {
  color: #e2b007;
}

.contact-container p {
  text-align: center;
  color: #555;
  margin-bottom: 30px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.input-group {
  display: flex;
  gap: 15px;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccc;
  resize: none;
  font-size: 1rem;
}

.btn {
  background: #002b5c;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}

.btn:hover {
  background: #e2b007;
  color: #002b5c;
}

/* Map Section */
.map-section {
  text-align: center;
  padding: 60px 10%;
  background: #fff;
}

.map-section h3 {
  font-size: 1.8rem;
  color: #002b5c;
  margin-bottom: 25px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  margin-bottom: 30px;
}

.quick-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.call-btn {
  background: #28a745;
}

.map-btn {
  background: #007bff;
}

.call-btn:hover {
  background: #218838;
}

.map-btn:hover {
  background: #0056b3;
}

/* Responsive */
@media (max-width: 768px) {
  .input-group {
    flex-direction: column;
  }

  .contact-container {
    padding: 25px;
  }

  .quick-buttons {
    flex-direction: column;
    gap: 10px;
  }
}


/* FOOTER STYLING */
.site-footer {
  background: #002b5c;
  color: white;
  padding: 60px 8% 20px;
  font-family: 'Poppins', sans-serif;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Column styles */
.footer-col {
  flex: 1;
  min-width: 240px;
}

.footer-title {
  font-size: 1.8rem;
  color: #e2b007;
  margin-bottom: 10px;
  font-weight: 600;
}

.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  color: #e2b007;
}

/* Social icons */
.footer-social a {
  color: #ffffff;
  background: #e2b007;
  padding: 10px;
  margin-right: 10px;
  border-radius: 50%;
  font-size: 1.1rem;
  display: inline-block;
  transition: .3s;
}

.footer-social a:hover {
  background: #ffffff;
  color: #002b5c;
}

/* Contact list */
.contact-list {
  list-style: none;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-list i {
  color: #e2b007;
  margin-right: 10px;
}

/* SEO Keyword tags */
.seo-tags {
  list-style: none;
}

.seo-tags li {
  background: #033b7f;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 0.85rem;
  margin-bottom: 6px;
  display: inline-block;
  margin-right: 6px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.3);
  padding-top: 15px;
  font-size: 0.9rem;
}

/* Responsive - Mobile */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-social a {
    margin-bottom: 10px;
  }

  .seo-tags li {
    display: inline-block;
    margin-bottom: 8px;
  }
}


/*packages*/


body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fefefe;
    color: #333;
  }

  h1, h2, h3, h4 {
    margin: 0.5em 0;
  }

  .tour-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem;
  }

  .tour-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .tour-card:hover {
    transform: scale(1.03);
  }

  .tour-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
  }

  .card-content {
    padding: 1rem;
  }

  .card-content h3 {
    color: #0d47a1;
    margin-bottom: 0.5rem;
  }

  .card-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .view-details {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #0d47a1;
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.9rem;
  }

  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0,0,0,0.8);
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .modal-content {
    background: #fff;
    border-radius: 12px;
    max-width: 900px;
    width: 100%;
    padding: 1rem 2rem 2rem 2rem;
    position: relative;
  }

  .modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
  }

  .modal h2 {
    color: #0d47a1;
    margin-bottom: 0.5rem;
  }

  .modal-images {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    margin: 1rem 0;
  }

  .modal-images img {
    width: 200px;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.2s;
  }

  .modal-images img:hover {
    transform: scale(1.05);
  }

  .modal-content .details {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 1rem;
  }

  .whatsapp-button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: #25D366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
  }

  /* Scrollbar for modal content */
  .details::-webkit-scrollbar {
    width: 6px;
  }
  .details::-webkit-scrollbar-thumb {
    background-color: #0d47a1;
    border-radius: 3px;
  }

  @media(max-width:768px){
    .modal-images img {
      width: 140px;
      height: 100px;
    }
    .tour-card img {
      height: 140px;
    }
  }